home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960425-19960715 / 000015_news@columbia.edu _Sat Apr 27 11:25:43 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id LAA17948 for <kermit.misc@watsun>; Sat, 27 Apr 1996 11:25:42 -0400 (EDT)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.5/8.7.3) id LAA10906 for kermit.misc@watsun; Sat, 27 Apr 1996 11:25:41 -0400 (EDT)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: K95 initial screen colors problem v1.1.4
  8. Date: 27 Apr 1996 15:25:26 GMT
  9. Organization: Columbia University
  10. Lines: 33
  11. Message-ID: <4lte96$akj@apakabar.cc.columbia.edu>
  12. References: <4lqqui$hak@barad-dur.nas.com>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4lqqui$hak@barad-dur.nas.com>,  <jholmes@sos.net> wrote:
  16. : I have the 1.1.4 version of Kermit-95. It's listed as item 91 in the bug
  17. : notes as being fixed, the initial screen colors aren't the same as
  18. : the ones that I've defined. Is there a way to solve this with this
  19. : version?
  20. It will be fixed (again :-) in the next patch, which will also come with
  21. some nice bonuses.
  22.  
  23. Meanwhile, there are various workarounds:
  24.  
  25.  . Hit the reset button (Alt-R).  But this also clears the screen.
  26.  
  27.  . If your host application has a "refresh screen" command, use it.
  28.  
  29.  . Prior to entering the terminal emulator, force creation of a new
  30.    virtual screen buffer:
  31.  
  32.      set terminal color ...   ; First set your colors
  33.      set term scrollback 256  ; Change size of scrollback buffer
  34.      set term scrollback 5000 ; Change it again (to any size you want)
  35.  
  36. If you put these commands at the end of your K95CUSTOM.INI file, they will
  37. always be executed.  However, if you are making a connection from the
  38. Dialer, the Dialer will issue another set of SET TERM COLOR commands (but
  39. without the scrollback-buffer trick) so undo the effect of those here.  
  40.  
  41. So if you are using the Dialer, another choice would be to put these
  42. commands in a login script, which is invoked from the Login page of the
  43. dialer entry.
  44.  
  45. - Frank